home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / shell-tools / msdos_36 / dos6 / deltree < prev    next >
AmigaDOS Script File  |  1996-01-15  |  276b  |  17 lines

  1. .key dir
  2. .bra {
  3. .ket }
  4.  
  5. If Not Exists {dir}
  6.     Echo "Object not found"
  7.     Quit >NIL: 205
  8. EndIf
  9. Ask "Delete directory `{dir}' and all its subdirectories? [yn]  "
  10. If WARN
  11.     Echo "Deleting {dir}..."
  12.     Delete {dir} all quiet
  13.     If Exists {dir}.info
  14.         Delete {dir}.info quiet
  15.     EndIf
  16. EndIf
  17.